home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / dev / m2 / m2_part1.lha / modula / dice / dice.LHA / examples / hello.c < prev   
C/C++ Source or Header  |  1990-05-20  |  73b  |  12 lines

  1.  
  2. /*
  3.  *  HELLO.C
  4.  */
  5.  
  6. main()
  7. {
  8.     puts("hello world");
  9.     return(0);
  10. }
  11.  
  12.